#frm-pme input, textarea, select {
	font-family: "unimed_sansregular";
	color:#41195f;
	background-color:#eee;
	padding-left: 0.5em;
	
	border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
	
}

#frm-pme label {	
	font-size: 0.9em;
	color:#666666;
}

#frm-pme select {
	font-family: "unimed_sansregular";
	font-size: 0.8em;
	color: #9e80b5;
	/*padding-left: 0.5em;*/
}

::-webkit-input-placeholder { /* Edge */
  font-family: "unimed_sansregular";
  font-size: 0.8em;
  color: #9e80b5;
  padding-left: 0.5em;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */  
	font-family: "unimed_sansregular";
	font-size: 0.8em;
	color: #9e80b5;
	padding-left: 0.5em;
}

::placeholder {
	font-family: "unimed_sansregular";
	font-size: 0.8em;
	color: #9e80b5;
	padding-left: 0.5em;
}


/* LEVE TEC - VALIDAÇÃO*/
.modal-container {
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: none;
}

.modal {
    position: relative;
    display: flex;
    flex-direction: column;
    border: none;
    border-radius:25px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
    background-color: #fff;
    padding: 10px;
    width: 50%;
    animation: modal 0.3s ease-out;
}

@keyframes modal {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

.modal .modal-header,
.modal .modal-content {
    position: relative;
    border-bottom: 1px solid #222;
    text-align: center;
    padding: 10px 0 10px 0;
		
}

.modal .modal-header span {
    position: absolute;
    right: 0;
    top: 90%;
    color: #000;
    font-weight: bold;
    font-size: 17px;
    padding: 10px 7px 4px 8px;
    border-radius: 100%;
}


.modal .modal-header span {
    cursor: pointer;
}

.modal .modal-header h1,
.modal .modal-footer p {
    margin: 0;
}

.modal .modal-footer {
    text-align: center;
    padding: 10px 0 10px 0;
    padding: 10px 0 8px 0;
}

/* MINHAS INSERÇÕES */

form .ulUnimed label {
	margin-top: 0.5em;
}
.error {
	color: red !important;
	border: 1px solid red;
	padding: 0.25em;
	margin-bottom: 0.5em;
	
	border-radius: 5px 5px 5px 5px;
    -moz-border-radius: 5px 5px 5px 5px;
    -webkit-border-radius: 5px 5px 5px 5px;	
}

@media screen and (max-device-width: 480px) {
	.error {
		font-size: 8px;
		padding: 0.25em;
	}	
}